crypto/tls.Config.autoSessionTicketKeys (field)
12 uses
crypto/tls (current package)
common.go#L737: autoSessionTicketKeys []ticketKey
common.go#L817: autoSessionTicketKeys: c.autoSessionTicketKeys,
common.go#L891: if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
common.go#L892: return c.autoSessionTicketKeys
common.go#L901: if len(c.autoSessionTicketKeys) == 0 || c.time().Sub(c.autoSessionTicketKeys[0].created) >= ticketKeyRotation {
common.go#L906: valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
common.go#L908: for _, k := range c.autoSessionTicketKeys {
common.go#L914: c.autoSessionTicketKeys = valid
common.go#L916: return c.autoSessionTicketKeys
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)